home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 145 / Gekkan Dennou Club - 2000.6 Vol. 145 (Japan).7z / Gekkan Dennou Club - 2000.6 Vol. 145 (Japan) (Track 1).bin / tools / sharp / xc2102.lzh / INCLUDE / BASIC0.H < prev    next >
Text File  |  1992-03-03  |  2KB  |  115 lines

  1. /*
  2.  * basic0.h X68k XC Compiler v2.10 Copyright 1990,91,92 SHARP/Hudson
  3.  */
  4. #ifndef    __BASIC0_H
  5. #define    __BASIC0_H
  6.  
  7. #ifdef    FORWORD
  8. #define    __PROTO_TYPE
  9. #endif
  10. #ifdef    __STDC__
  11. #define    __PROTO_TYPE
  12. #endif
  13.  
  14. static    char    STRCRLF[3]={13,10,0};
  15. static    char    STRTAB[2]={9,0};
  16.  
  17. #ifdef    __PROTO_TYPE
  18.  
  19. char    *b_dateS(char *);
  20. char    *b_timeS(char *);
  21. char    *b_dayS(char *);
  22. int    b_free(void);
  23. char    *b_inkeyS(char *);
  24. char    *b_inkey0(char *);
  25. char    *b_striS(char *, int);
  26. char    *b_strfS(char *, double);
  27. int    csrlin(void);
  28. int    pos(void);
  29. char    *b_spaceS(char *, int);
  30. void    beep(void);
  31. void    cls(void);
  32. void    b_exit(int);
  33. void    width(int);
  34. void    color(int);
  35. void    console(int, int, int);
  36. void    b_input(char *, int,...);
  37. void    b_linput(char *, int);
  38. void    locate(int, int);
  39. void    b_iprint(int);
  40. void    b_fprint(double);
  41. void    b_tprint(int);
  42. void    b_ilprint(int);
  43. void    b_flprint(double);
  44. void    b_tlprint(int);
  45. void    screen(int, int, int, int);
  46. double    pi(void);
  47. double    b_pi(double);
  48. int    abs(int);
  49. double    fabs(double);
  50. void    b_csw(int);
  51. void    b_tpalet(int, int, int, int);
  52. void    b_init(void);
  53. int    b_int(double);
  54. char    *using(char *, const char *,...);
  55. void    b_sprint(const char *);
  56. void    b_slprint(const char *);
  57. void    key(int, const char *);
  58. void    b_setdate(const char *);
  59. void    b_settime(const char *);
  60. void    b_strncpy(int, char *, const char *);
  61. int    b_strcmp(const char *, int, const char *);
  62. char    *b_stradd(char *, const char *, const char *,...);
  63.  
  64. #undef    __PROTO_TYPE
  65. #else
  66.  
  67. char    *b_dateS();
  68. char    *b_timeS();
  69. char    *b_dayS();
  70. int    b_free();
  71. char    *b_inkeyS();
  72. char    *b_inkey0();
  73. char    *b_striS();
  74. char    *b_strfS();
  75. int    csrlin();
  76. int    pos();
  77. char    *b_spaceS();
  78. char    *using();
  79. void    beep();
  80. void    cls();
  81. void    b_exit();
  82. void    width();
  83. void    color();
  84. void    console();
  85. void    b_input();
  86. void    b_linput();
  87. void    locate();
  88. void    b_sprint();
  89. void    b_iprint();
  90. void    b_fprint();
  91. void    b_tprint();
  92. void    b_slprint();
  93. void    b_ilprint();
  94. void    b_flprint();
  95. void    b_tlprint();
  96. void    key();
  97. void    screen();
  98. double    pi();
  99. double    b_pi();
  100. int    abs();
  101. double    fabs();
  102. void    b_setdate();
  103. void    b_settime();
  104. void    b_csw();
  105. void    b_tpalet();
  106. void    b_strncpy();
  107. int    b_strcmp();
  108. char    *b_stradd();
  109. void    b_init();
  110. int    b_int();
  111.  
  112. #endif
  113.  
  114. #endif
  115.